home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / ggraph / ggraphdefs.h < prev    next >
C/C++ Source or Header  |  1989-07-12  |  1KB  |  39 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3. #include "ggraphstruct.h"
  4.  
  5. extern struct agraph graph[];        /* the graphs */
  6. extern float   graphx, graphy;        /* a point on the graph */
  7. extern int     curline;
  8. extern int     curgraph;
  9. extern int     maxlines;        /* number of lines read in */
  10. extern int     errno;
  11. extern char    firstline[]; /* first line of gremlin file */
  12. extern char    sfirstline[]; /* first line of gremlin file */
  13. extern int     xgridf;
  14. extern int     ygridf;
  15. extern int     xaxisf;
  16. extern int     yaxisf;
  17. extern int     xtickf;
  18. extern int     ytickf;
  19. extern int     xticklf;
  20. extern int     yticklf;
  21. extern int     titlef;
  22. extern int     framef;
  23. extern int     symbsw;
  24. extern int     crossxsw;
  25. extern int     crossysw;
  26. extern int     legendf;
  27. extern int     legendbox;
  28. extern int     legendside;
  29.  
  30. extern FILE *outfile;        /* output file */
  31. extern char *commands[];    /* commands */
  32. extern char *justify_names[];    /* justification */
  33. extern int debug;         /* debugging switch */
  34. extern int ycharsz[];        /* size of characters */
  35. extern int xcharsz[];        /* origin array of characters */
  36. extern int descenders[];    /* descender array of characters */
  37. extern char graphname[];    /* name of graph file being drawn */
  38. extern int version;        /* version to use */
  39.